<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output method="html" indent="yes"/>

 <xsl:template match="/">
  <HTML>
   <BODY>
    <P STYLE="color:navy">
     <xsl:value-of select="abeceda"/>
     <HR/>
    </P>
    <HR/>
    <P STYLE="color:#006600">
     <xsl:for-each select="abeceda/*">
      <xsl:value-of select="."/>
     </xsl:for-each>
    </P>
   </BODY>
  </HTML>
 </xsl:template>

</xsl:stylesheet>